home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.mdf / Docs / Interview.dir / Internal_58.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  1.1 KB  |  38 lines

  1. on colocarSubtitulo
  2.   global subtitulos
  3.   if the movieRate of sprite 18 = 0 then
  4.     set the text of field "subtitulo" to " "
  5.     exit
  6.   end if
  7.   if the movieTime of sprite 18 = 0 then
  8.     set the text of field "subtitulo" to " "
  9.     exit
  10.   end if
  11.   if the number of lines in subtitulos = 1 then
  12.     exit
  13.   end if
  14.   set tiempo to the movieTime of sprite 18
  15.   repeat with x = 2 to the number of lines in subtitulos
  16.     if tiempo < mmssffToTicks(char 2 to 9 of line x of subtitulos) then
  17.       exit repeat
  18.     end if
  19.   end repeat
  20.   if (x = 2) and (tiempo < mmssffToTicks(char 2 to 9 of line x of subtitulos)) then
  21.     exit
  22.   else
  23.     if x > 2 then
  24.       set x to x - 1
  25.     end if
  26.   end if
  27.   if the text of field "subtitulo" <> char 11 to the number of chars in line x of subtitulos of line x of subtitulos then
  28.     set the text of field "subtitulo" to char 11 to the number of chars in line x of subtitulos of line x of subtitulos
  29.   end if
  30. end
  31.  
  32. on mmssffToTicks mmssff
  33.   set minutos to value(char 1 to 2 of mmssff)
  34.   set segundos to value(char 4 to 5 of mmssff)
  35.   set ticks to (minutos * 3600) + (segundos * 60)
  36.   return ticks
  37. end
  38.